@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900');

*{
    font-family: 'Poppins' , sans-serif;
}
/* width */
::-webkit-scrollbar {
	width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px grey; 
	border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
	background: rgb(47, 128, 0); 
	border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
	background: #71fc6a; 
  }
body{
	overflow-x: hidden;
	background-color: #c7ddb5;
}
/* navbar style */
.logo img {
	height: 50px;
	width: 80px;
  }
.navbar {
	padding: 30px;
	background-color: #75975e;
	height: auto;

  }
  .navbar a {
	color: #75975e;
  }
  .navbar.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  
  /* Dropdown menu styles */
  .navbar a:not(.logo):hover {
	background-color: #ddd;
	color: black;
  }
  
  .dropdown-content {
	background-color: #75975e;
  }
  
  .dropdown-content a {
	color: black;
  }
  
  .dropdown-content a:hover {
	background-color: #c9c9c9;
	color: black;
  }
  
  /* Carousel styles */
  .carousel-item img {
	width: 100%;
	height: 630px;
}

/* Style for the text and button */
.carousel-caption-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.carousel-caption-text h3,
.carousel-caption-text p {
	padding: 10px;
	color: #fff; /* Text color */
	margin: 0;
}

.carousel-caption-text a {
	display: inline-block;
	padding: 10px 20px;
	background-color: transparent; /* Transparent button background */
	color: #ffffff; /* Button text color */
	text-decoration: none;
	border: 2px solid #ffffff; /* Border for the button */
	border-radius: 20px; /* Make the button round */
}
    /* Container styles */
	.container {
		display: flex;
		align-items: center;
	  }
	  
	  .container img {
		max-width: 50%;
		margin-left: 20px;
	  }

  /* Card styles */
  .card {
	position: relative;
	width: 100%;
	transition: transform 0.2s;
	margin: 10px;
	border-radius: 20px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .card img{
	height: 370px;
	border-radius: 20px;
  }
  
  .card:hover {
	transform: scale(1.1);
  }
  
  .card-content {
	display: none;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	padding: 10px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	transition: opacity 0.2s;
	overflow: hidden;
	border-radius: 20px;
  }
  
  .card:hover .card-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	visibility: visible;
	opacity: 1;
  }

  .centered-button {
	background-color: #007bff;
	color: #fff;
	border: none;
	padding: 10px 20px;
	margin-top: 10px;
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s;
	font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .centered-button:hover {
	background-color: #0056b3;
	color: #fff;
	transform: scale(1.05);
  }

  .about {
    margin: 20px; 
    padding: 10px; 
	text-align: center;
  }
  .about h1 {
    margin-bottom: 10px; 
  }
  .about p {
    margin-top: 10px; 
    margin-bottom: 10px; 
  }
  .button {
    margin-top: 10px; 
  }
  /* Footer styles */
  footer {
	position: relative;
	bottom: 0;
	left: 0;
	right: 0;
	background: #87ab69;
	height: auto;
	font-family: "Open Sans";
	color: #fff;
	width: 100%;
  }
  
  .footer-content {
	max-width: 1170px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
  }
  
  .footer-content h3 {
	font-size: 1.8rem;
	font-weight: 400;
	text-transform: capitalize;
	line-height: 3rem;
  }
  
  .footer-content p {
	max-width: 500px;
	margin: 10px auto;
	line-height: 28px;
	font-size: 14px;
  }
  
  /* Social links in the footer */
  .socials {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 1rem 0 3rem 0;
  }
  
  .socials li {
	margin: 0 10px;
  }
  
  .socials a {
	text-decoration: none;
	color: #fff;
  }
  
  .socials a i {
	font-size: 1.1rem;
	transition: color 0.4s ease;
  }
  
  .socials a:hover i {
	color: #c5b5b5;
  }
  
  /* Footer bottom section */
  .footer-bottom {
	background: #648354;
	width: 100%;
	padding: 20px 0;
	text-align: center;
  }
  
  .footer-bottom p {
	font-size: 14px;
	word-spacing: 2px;
	text-transform: capitalize;
  }
  
  .footer-bottom span {
	text-transform: uppercase;
	opacity: 0.4;
	font-weight: 200;
  }

